PrintToPDFResponse

data class PrintToPDFResponse(data: String, stream: StreamHandle?)

Represents response frame that is returned from Page#printToPDF operation call. Print page as PDF.

See also

Constructors

PrintToPDFResponse
Link copied to clipboard
fun PrintToPDFResponse(data: String, stream: StreamHandle? = null)

Properties

data
Link copied to clipboard
val data: String
Base64-encoded pdf data.
stream
Link copied to clipboard
val stream: StreamHandle? = null
A handle of the stream that holds resulting PDF data.

Sources

jvm source
Link copied to clipboard